github.com/jackc/pgx/v5.Conn.descriptionCache (field)

17 uses

	github.com/jackc/pgx/v5 (current package)
		batch.go#L503: 		if sc := conn.descriptionCache; sc != nil {
		conn.go#L73: 	descriptionCache        stmtcache.Cache
		conn.go#L293: 		c.descriptionCache = stmtcache.NewLRUCache(c.config.DescriptionCacheCapacity)
		conn.go#L403: 		c.descriptionCache = stmtcache.NewLRUCache(c.config.DescriptionCacheCapacity)
		conn.go#L526: 			if sc := c.descriptionCache; sc != nil {
		conn.go#L552: 		if c.descriptionCache == nil {
		conn.go#L555: 		sd := c.descriptionCache.Get(sql)
		conn.go#L561: 			c.descriptionCache.Put(sd)
		conn.go#L911: 		if c.descriptionCache == nil {
		conn.go#L914: 		sd = c.descriptionCache.Get(sql)
		conn.go#L920: 			c.descriptionCache.Put(sd)
		conn.go#L1106: 	if c.descriptionCache == nil {
		conn.go#L1115: 			sd := c.descriptionCache.Get(bi.SQL)
		conn.go#L1133: 	return c.sendBatchExtendedWithDescription(ctx, b, distinctNewQueries, c.descriptionCache)
		conn.go#L1436: 	if c.descriptionCache != nil {
		conn.go#L1437: 		c.descriptionCache.RemoveInvalidated()
		rows.go#L178: 		if sc := rows.conn.descriptionCache; sc != nil {